From: Henrik Enberg Date: Fri, 27 Apr 2007 18:27:51 +0000 (+0000) Subject: (rmail-perm-variables): Make sure rmail-desc-vector is buffer local. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8790^2~6 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f68a4a7a6b56ea48ec7678775640269bc75d32f7;p=emacs.git (rmail-perm-variables): Make sure rmail-desc-vector is buffer local. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 0f65fc8b58e..a6994a1e883 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -1131,6 +1131,7 @@ Instead, these commands are available: (make-local-variable 'rmail-total-messages) (make-local-variable 'rmail-overlay-list) (setq rmail-overlay-list nil) + (make-local'variable 'rmail-desc-vector) (make-local-variable 'rmail-inbox-list) (setq rmail-inbox-list (rmail-get-file-inbox-list)) ;; Provide default set of inboxes for primary mail file ~/RMAIL. @@ -1464,6 +1465,8 @@ updated file. It returns t if it got any new messages." ;; Process the new messages for spam using the integrated ;; spam filter. The spam filter can mark messages for ;; deletion and can output a message. + ;; XXX rmail-spam-filter hasn't been tested at all with + ;; the mbox branch. --enberg (setq current-message (rmail-first-unseen-message)) (when rmail-use-spam-filter (while (<= current-message rmail-total-messages)